body {
    margin: 20px;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #222;
}

header h1 {
    text-align: center;
    font-size: 42px;
    margin: 25px 0 15px;
    letter-spacing: 1px;
}

.menu-lineas {
    background-color: #ffffff;
    border-bottom: 2px solid #000;
}

.menu-lineas ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.menu-lineas ul li {
    padding: 15px 25px;
    border-right: 1px solid #ccc;
}

.menu-lineas ul li:last-child {
    border-right: none;
}

.menu-lineas ul li a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.4px;
    padding-bottom: 3px;
}

.menu-lineas ul li a.active {
    border-bottom: 3px solid #000;
}

.band-image {
    display: block;
    margin: 30px auto 20px;
    width: 40%;
    border-radius: 10px;
}

.intro {
    width: 65%;
    margin: auto;
    text-align: justify;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 40px;
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 12px;
    margin-top: 40px;
}
.page-title {
  font-weight: bold;
  font-style: italic;
  text-align: center;
  margin-bottom: 30px;
}
.historia p {
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: left;
}

.timeline li {
  margin-bottom: 45px;
}

.timeline h3 {
  font-weight: bold;
  margin-bottom: 12px;
}

.era-img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 12px 0 20px 0;
  border-radius: 8px;
}
.bandas h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  font-style: italic;
}
.section-box {
  background-color: rgba(255,255,255,0.98);
  padding: 24px;
  border-radius: 10px;
  max-width: 980px;
  margin: 20px auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}


.page-title {
  font-weight: bold;
  font-style: italic;
  text-align: center;
  margin-bottom: 20px;
  color: #2b2b2b;
}


.band-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  background: #fff;
  font-family: Arial, sans-serif;
}


.band-table thead th {
  background: #111;
  color: #fff;
  padding: 12px 10px;
  text-align: left;
  font-weight: bold;
  border-bottom: 3px solid #8b0000;
}

.band-table tbody td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
  color: #222;
}


.band-table td.img-col {
  width: 120px;
  padding: 8px;
}

.band-table img.thumb {
  width: 100%;
  max-width: 110px;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}


.band-table tbody tr:nth-child(even) {
  background: #fafafa;
}


.band-table + .subgeneros {
  margin-top: 18px;
}


.subgeneros h3 {
  margin: 18px 0 8px 0;
  font-weight: bold;
  text-align: left;
}

.subgeneros ul {
  list-style: disc;
  margin-left: 30px;
  color: #222;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .band-table td.img-col {
    width: 90px;
    padding: 6px;
  }
  .band-table thead {
    display: none;
  }
  .band-table, .band-table tbody, .band-table tr, .band-table td {
    display: block;
    width: 100%;
  }
  .band-table tr {
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
  }
  .band-table td {
    padding-left: 50%;
    position: relative;
  }
  .band-table td::before {
    position: absolute;
    left: 12px;
    top: 12px;
    font-weight: bold;
    color: #333;
  }
  .band-table td:nth-of-type(1)::before { content: "Imagen"; }
  .band-table td:nth-of-type(2)::before { content: "Nombre"; }
  .band-table td:nth-of-type(3)::before { content: "País"; }
  .band-table td:nth-of-type(4)::before { content: "Año"; }
}


.contacto {
    max-width: 850px;
}

.fan-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.fan-form label {
    font-weight: bold;
    font-size: 16px;
    color: #111;
}

.fan-form input,
.fan-form select,
.fan-form textarea {
    padding: 12px;
    border: 2px solid #000;
    border-radius: 6px;
    background: #fff;
    font-size: 15px;
    color: #222;
    font-family: Arial, sans-serif;
    transition: 0.25s ease;
}

.fan-form input:focus,
.fan-form select:focus,
.fan-form textarea:focus {
    outline: none;
    border-color: #8b0000; /* rojo profundo rock */
    box-shadow: 0 0 6px rgba(139, 0, 0, 0.4);
}

.btn-enviar {
    width: fit-content;
    padding: 12px 26px;
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn-enviar:hover {
    background-color: #8b0000;
    transform: translateY(-2px);
}


.galeria {
    max-width: 1000px;
}

.grid-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    grid-gap: 20px;
    margin-top: 20px;
}

.grid-galeria img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #111;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-galeria img:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(139, 0, 0, 0.4);
}
.inicio-rock {
    max-width: 1000px;
    margin: 10px auto;
    padding: 20px 10px;
}

.titulo-inicio {
    text-align: center;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 30px;
}

.intro-flex {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 10px;
    justify-content: center;
}

.img-inicio-rock {
    width: 15%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.texto-inicio-rock p {
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
    color: #222;
}

.frase-rock h3 {
    text-align: center;
    font-style: italic;
    border-left: 4px solid #8b0000;
    padding-left: 12px;
    margin: 25px 0;
}

.bienvenida-rock {
    text-align: center;
    margin-top: 35px;
}

.bienvenida-rock h2 {
    margin-bottom: 10px;
    font-weight: bold;
    font-style: italic;
}
.centro-img {
    display: block;
    margin: 0 auto 25px auto;
    width: 60%;
}
